home *** CD-ROM | disk | FTP | other *** search
/ Travel to Space / Travel to Space.iso / dos_prog / astronmy / mercury / loan.eka < prev    next >
Text File  |  1990-11-09  |  404b  |  17 lines

  1. ; Typical financial problem.
  2.  
  3. ; Find how long it takes to pay off the mortgage on a $150000 house if the
  4. ; down payment is $20000, the rate is 13%, and the montly payment is $2000.
  5.  
  6.    dnpay = 20000
  7.    loan = 150000
  8.    equity = FVAL(mrate,months,-2000,loan-dnpay)
  9.    mrate = yrate / 12
  10.    years = months / 12
  11.    yrate = 0.13
  12.    equity = 100000
  13.    years := 10
  14.    months := 120
  15.  
  16. DIGITS 10
  17.